home *** CD-ROM | disk | FTP | other *** search
- ' +----------------------------------------------------------------------+
- ' | |
- ' | PBClone Copyright (c) 1990-1993 Thomas G. Hanlin III |
- ' | |
- ' +----------------------------------------------------------------------+
-
- DECLARE SUB DateN2S (MonthNr%, DayNr%, YearNr%, DateSt$)
- DECLARE SUB Int2Date (MonthNr%, DayNr%, YearNr%, BYVAL SqueezedDate%)
-
- FUNCTION Int2DateSt$ (DateNr%)
- Int2Date M%, D%, Y%, DateNr%
- DateSt$ = "xx-xx-xxxx"
- DateN2S M%, D%, Y%, DateSt$
- Int2DateSt$ = DateSt$
- END FUNCTION
-